Skip to content

chore(deps): update all non-major dependencies#255

Merged
lachlancollins merged 1 commit intomainfrom
renovate/all-minor-patch
Jun 9, 2025
Merged

chore(deps): update all non-major dependencies#255
lachlancollins merged 1 commit intomainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Jun 9, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@stylistic/eslint-plugin (source) ^4.4.0 -> ^4.4.1 age adoption passing confidence
@tanstack/query-core (source) ^5.79.0 -> ^5.80.6 age adoption passing confidence
@types/react-dom (source) ^19.1.5 -> ^19.1.6 age adoption passing confidence
@vitejs/plugin-react (source) ^4.5.0 -> ^4.5.1 age adoption passing confidence
eslint-plugin-import-x ^4.15.0 -> ^4.15.1 age adoption passing confidence
eslint-plugin-n ^17.18.0 -> ^17.19.0 age adoption passing confidence
pnpm (source) 10.11.0 -> 10.12.1 age adoption passing confidence
simple-git (source) ^3.27.0 -> ^3.28.0 age adoption passing confidence
typescript-eslint (source) ^8.33.0 -> ^8.33.1 age adoption passing confidence
vitest (source) ^3.1.4 -> ^3.2.2 age adoption passing confidence

Release Notes

eslint-stylistic/eslint-stylistic (@​stylistic/eslint-plugin)

v4.4.1

Compare Source

Bug Fixes
  • keyword-spacing: check spaces around the type keyword in export declarations (#​797) (6854a3c)
Chores
TanStack/query (@​tanstack/query-core)

v5.80.6

Compare Source

Version 5.80.6 - 6/5/25, 1:09 PM

Changes

Refactor
  • types: revert narrow onSuccess/onError/onMutate/onSettled callback types to Promise | void (#​9202)" (#​9251) (dfbda9d) by Braden Wong

Packages

v5.80.5

Compare Source

Version 5.80.5 - 6/4/25, 6:43 PM

Changes

Fix
  • experimental_createQueryPersister: Change persisterRestoreAll to restoreQueries with filter support (#​9230) (9e0e60c) by René Klomp

Packages

v5.80.2

Compare Source

Version 5.80.2 - 6/3/25, 12:08 PM

Changes

Fix

Packages

v5.80.1

Compare Source

Version 5.80.1 - 6/3/25, 11:23 AM

Changes

Perf
  • improve performance of util function "difference" in quriesObserver.ts in query-core package (#​9201) (57c6ce1) by novice0840

Packages

v5.80.0

Compare Source

Version 5.80.0 - 6/3/25, 9:36 AM

Changes

Feat
  • query-devtools: add indicator for staleTime: "static" (#​9215) (3e7d715) by MINSEONG KIM
Refactor
  • types: remove unnecessary TQueryData generic in InfiniteQueryObserverOptions (#​9224) (efa963d) by Braden Wong
  • query-core: add "Set" instead of "includes" (#​9221) (4bf169e) by novice0840
Chore
  • consolidate noop function usage across framework packages (#​9228) (1fba7fc) by Braden Wong
  • remove redundant word in comment (#​9231) (a2a23a8) by clonemycode
  • improve type safety in getQueryData by using generics (#​9218) (3a89ec9) by Braden Wong

Packages

v5.79.2

Compare Source

Version 5.79.2 - 6/2/25, 4:29 PM

Changes

Refactor
  • react-query: change the order of const variables (#​9211) (0e083c6) by novice0840
  • query-core: extract context creation to functions and move type assertions (#​9210) (0cbfc5e) by Braden Wong

Packages

v5.79.1

Compare Source

Version 5.79.1 - 6/2/25, 4:17 PM

Changes

Refactor
  • types: narrow onSuccess/onError/onMutate/onSettled callback types to Promise | void (#​9202) (982f6ca) by Braden Wong
Docs
  • Mention query keys needs to be serializable using JSON.stringify (#​9204) (ff2b51a) by Zentrik

Packages

vitejs/vite-plugin-react (@​vitejs/plugin-react)

v4.5.1

Compare Source

Add explicit semicolon in preambleCode #​485

This fixes an edge case when using HTML minifiers that strips line breaks aggressively.

un-ts/eslint-plugin-import-x (eslint-plugin-import-x)

v4.15.1

Compare Source

Patch Changes
eslint-community/eslint-plugin-n (eslint-plugin-n)

v17.19.0

Compare Source

🌟 Features
pnpm/pnpm (pnpm)

v10.12.1

Minor Changes
  • Experimental. Added support for global virtual stores. When enabled, node_modules contains only symlinks to a central virtual store, rather to node_modules/.pnpm. By default, this central store is located at <store-path>/links (you can find the store path by running pnpm store path).

    In the central virtual store, each package is hard linked into a directory whose name is the hash of its dependency graph. This allows multiple projects on the system to symlink shared dependencies from this central location, significantly improving installation speed when a warm cache is available.

    This is conceptually similar to how NixOS manages packages, using dependency graph hashes to create isolated and reusable package directories.

    To enable the global virtual store, set enableGlobalVirtualStore: true in your root pnpm-workspace.yaml, or globally via:

    pnpm config -g set enable-global-virtual-store true

    NOTE: In CI environments, where caches are typically cold, this setting may slow down installation. pnpm automatically disables the global virtual store when running in CI.

    Related PR: #​8190

  • The pnpm update command now supports updating catalog: protocol dependencies and writes new specifiers to pnpm-workspace.yaml.
  • Added two new CLI options (--save-catalog and --save-catalog-name=<name>) to pnpm add to save new dependencies as catalog entries. catalog: or catalog:<name> will be added to package.json and the package specifier will be added to the catalogs or catalog[<name>] object in pnpm-workspace.yaml #​9425.
  • Semi-breaking. The keys used for side-effects caches have changed. If you have a side-effects cache generated by a previous version of pnpm, the new version will not use it and will create a new cache instead #​9605.
  • Added a new setting called ci for explicitly telling pnpm if the current environment is a CI or not.
Patch Changes
  • Sort versions printed by pnpm patch using semantic versioning rules.
  • Improve the way the error message displays mismatched specifiers. Show differences instead of 2 whole objects #​9598.
  • Revert #​9574 to fix a regression #​9596.

v10.11.1

Compare Source

Patch Changes
  • Fix an issue in which pnpm deploy --legacy creates unexpected directories when the root package.json has a workspace package as a peer dependency #​9550.
  • Dependencies specified via a URL that redirects will only be locked to the target if it is immutable, fixing a regression when installing from GitHub releases. (#​9531)
  • Installation should not exit with an error if strictPeerDependencies is true but all issues are ignored by peerDependencyRules #​9505.
  • Use pnpm_config_ env variables instead of npm_config_ #​9571.
  • Fix a regression (in v10.9.0) causing the --lockfile-only flag on pnpm update to produce a different pnpm-lock.yaml than an update without the flag.
  • Let pnpm deploy work in repos with overrides when inject-workspace-packages=true #​9283.
  • Fixed the problem of path loss caused by parsing URL address. Fixes a regression shipped in pnpm v10.11 via #​9502.
  • pnpm -r --silent run should not print out section #​9563.
steveukx/git-js (simple-git)

v3.28.0

Compare Source

Minor Changes
  • 2adf47d: Allow repeating git options like {'--opt': ['value1', 'value2']}
typescript-eslint/typescript-eslint (typescript-eslint)

v8.33.1

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

vitest-dev/vitest (vitest)

v3.2.2

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v3.2.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v3.2.0

Compare Source


Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot added the dependencies Pull requests that update a dependency file label Jun 9, 2025
@changeset-bot
Copy link
Copy Markdown

changeset-bot Bot commented Jun 9, 2025

⚠️ No Changeset found

Latest commit: 256887c

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@nx-cloud
Copy link
Copy Markdown

nx-cloud Bot commented Jun 9, 2025

View your CI Pipeline Execution ↗ for commit 256887c.

Command Status Duration Result
nx affected --targets=test:eslint,test:types,te... ✅ Succeeded 57s View ↗
nx run-many --target=build ✅ Succeeded 10s View ↗

☁️ Nx Cloud last updated this comment at 2025-06-09 03:26:41 UTC

@pkg-pr-new
Copy link
Copy Markdown

pkg-pr-new Bot commented Jun 9, 2025

@tanstack/config

npm i https://pkg.pr.new/@tanstack/config@255

@tanstack/eslint-config

npm i https://pkg.pr.new/@tanstack/eslint-config@255

@tanstack/publish-config

npm i https://pkg.pr.new/@tanstack/publish-config@255

@tanstack/typedoc-config

npm i https://pkg.pr.new/@tanstack/typedoc-config@255

@tanstack/vite-config

npm i https://pkg.pr.new/@tanstack/vite-config@255

commit: 256887c

@lachlancollins lachlancollins merged commit 23e8914 into main Jun 9, 2025
4 checks passed
@lachlancollins lachlancollins deleted the renovate/all-minor-patch branch June 9, 2025 03:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant